home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 07 / 3 / DISK0735.ZIP / BACKUP.BAT < prev    next >
DOS Batch File  |  1989-08-14  |  595b  |  24 lines

  1. echo off
  2. cls
  3. if "%2" == "" goto LN1
  4. if "%1" == "" goto LN1
  5. goto LN2
  6. :LN1
  7. echo No parameters present or second parameter is missing.
  8. echo -
  9. echo -  type: BACKUP (source drive letter): (destination drive letter):
  10. echo -
  11. echo -  example: to backup data files on drive A to backup disk on drive B
  12. echo -           type: BACKUP A: B: (enter)
  13. echo -        or type: BACKUP A:\XXX  B:\YYY  (enter)
  14. echo -          where: XXX and YYY are sub directory names
  15. goto END
  16. :LN2
  17. del %2\*.dat
  18. del %2\*.idx
  19. del %2\*.msc
  20. copy %1\*.dat %2/v
  21. copy %1\*.idx %2/v
  22. copy %1\*.msc %2/v
  23. dir %2
  24. :END